home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.4)
-
- from test import test_support
- from test import test_multibytecodec_support
- import unittest
-
- class Test_Big5HKSCS(test_multibytecodec_support.TestBase, unittest.TestCase):
- encoding = 'big5hkscs'
- tstring = test_multibytecodec_support.load_teststring('big5hkscs')
- codectests = (('abc\x80\x80\xc1\xc4', 'strict', None), ('abc\xc8', 'strict', None), ('abc\x80\x80\xc1\xc4', 'replace', u'abc�謐'), ('abc\x80\x80\xc1\xc4\xc8', 'replace', u'abc�謐�'), ('abc\x80\x80\xc1\xc4', 'ignore', u'abc謐'))
-
-
- def test_main():
- suite = unittest.TestSuite()
- suite.addTest(unittest.makeSuite(Test_Big5HKSCS))
- test_support.run_suite(suite)
-
- if __name__ == '__main__':
- test_main()
-
-